Installation Additions for configuring the Action framework through Spring.

  1. Add the GSF spring configuration to you WEB-INF directory. A sample configuration file can be found for reference.
  2. Add the following lines to your web.xml and restart the application server. A complete sample web.xml for a Content Server 7.6 JSK is avaiable for reference
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            version="2.4"
            xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    
    [...]
    
            <!-- add gsfApplicationContext -->
            <context-param>
                    <param-name>contextConfigLocation</param-name>
                    <param-value>/WEB-INF/applicationContext.xml,/WEB-INF/gsfApplicationContext.xml</param-value>
            </context-param>
    
    
    [..]
    
    </web-app>
  3. Read further instructions on how to use GSF. A good starter is the GSF Beginners Guide.